Ultimate tic-tac-toe cannot be reasonably solved using any brute-force tactics. We can try computer programming to solve for this.
The most common artificial intelligence (AI) tactic, minimax, may be used to play ultimate tic-tac-toe, but has difficulty playing this. This is because, despite having relatively simple rules, ultimate tic-tac-toe lacks any simple heuristic evaluation function. This function is necessary in minimax, for it determines how good a specific position is. Although elementary evaluation functions can be made for ultimate tic-tac-toe by taking into account the number of local victories, these largely overlook positional advantage that is much harder to quantify. Without any efficient evaluation function, most typical computer implementations are weak, and therefore there are few computer opponents that can consistently outplay humans.
However, artificial intelligence algorithms that don't need evaluation functions, like the Monte Carlo tree-search algorithm, have no problem in playing this game. The Monte Carlo tree search relies on random simulations of games to determine how good a position is instead of a positional evaluation and is therefore able to accurately assess how good a current position is. Therefore, computer implementations using these algorithms tend to outperform minimax solutions and can consistently beat human opponents.
Homework Problem:
Rope around the world puzzle (Credit: William Whiston 1667-1752)
Take a tennis ball, and choose one of its equators. How much longer would you have to make the rope so that it is one foot from the surface of the tennis ball at all points?
What if we took the equator of earth. How much longer would we have to make the rope so that it is one foot from the surface of the earth at all points?
Let kids guess the answers to each.
Answer: In both cases the answer is about 6.28 ft (2 pi) - a surprising conclusion given that most people expect the earth answer to be much higher.